Reflection and Refraction of Electromagnetic Waves

Effect of the Refractive Index

The effect of the material on the wave propagation can be understood when considering a plane wave Es incident on a thin material slab of thickness Δz.

(1)E=E0ei(ωtkz(n1)kΔz)=E0ei(n1)kΔzei(ωtkz)=eiθEs with θ=k(n1)Δz

For small values of θ the exponential function can be approximated by

(2)ex1+x+x22

such that we obtain

(3)eik(n1)Δz1ik(n1)Δzk2(n1)2Δz22

The total field behind the thin slab therefore is

(4)E(z)=E0ei(ωtkz)Eeik(n1)ΔzE0ei(ωtkz)Emedium

As shown in , the resulting wave is delayed by a phase factor k(n1)Δz (see ) and the amplitude is reduced by a factor k(n1)Δz.

Code
# Parameters
E0 = 1.0  # Initial amplitude
k = 2*np.pi  # Wave number
n = 1.5  # Refractive index
dz = 0.1  # Thickness of slab
omega = 2*np.pi  # Angular frequency
t = 0  # Fixed time point

# Spatial grid
z = np.linspace(0, 2, 1000)

# Calculate components
E_vacuum = E0 * np.exp(1j*(omega*t - k*z))
E_medium = -1j * k * (n-1) * dz * E0 * np.exp(1j*(omega*t - k*z))
E_total = E_vacuum + E_medium

# Create figure
fig, ax1 = plt.subplots(1, 1, figsize=get_size(12, 8))

# Plot real parts
ax1.plot(z, E_vacuum.real, 'b-', label='Incident', alpha=0.7)
ax1.plot(z, E_medium.real, 'r-', label='Medium', alpha=0.7)
ax1.plot(z, E_total.real, 'g-.', label='Total', alpha=0.7)
ax1.set_xlabel('position (z)')
ax1.set_ylabel('Re[E(z)]')
ax1.legend()

plt.show()
Figure 1— Components of the electric field in medium

General Description of Reflection and Refraction

Before we examine the behavior of electromagnetic waves at boundaries, we need to define the geometry and examine the electric and magnetic fields present. shows the wavevectors of the incident kI, reflected kR and transmitted kT waves in the two materials with the refractive indices n1 and n2.

Figure 2— Reflection and refraction of an electromagnetic wave at a boundary.

These wavevectors are connected to the following plane waves:

(5)Einc=EIei(ωItkIr)

(6)Eref=ERei(ωRtkRr)

(7)Etra=ETei(ωTtkTr)

As discussed in through , we must consider the direction of polarization of their electric or magnetic fields. We differentiate between:

  • p-polarized light: electric field is in the plane of incidence (given by the k-vector and the surface normal), also called transverse magnetic (TM)
  • s-polarized light: electric field is perpendicular to the plane of incidence, also called transverse electric (TE)
Figure 3— Decomposition of the incident electric field into components normal and tangential to the dielectric boundary.

As shown in , we need to split these polarisation vectors into components that are parallel (||) or perpendicular () to the interface. This is required for applying boundary conditions for the electric and magnetic fields.

Boundary Conditions

The boundary conditions for the electric or magnetic field passing an interface are derived from the Maxwell equations.

Figure 4— Integration over a closed surface (left) and close path (right) to obtain the boundary conditions for the electric field components.

Let us take the divergence of the displacement field D=ρf which is equal to the density of free charges. When integrating both sides over the volume:

(8)DdV=ρfdV

we can apply Gauss’ theorem and replace the volume integral over the divergence with an integral over closed surface of that volume:

(9)DdA=qf

where dA is a vector standing perpendicular on the surface element dA and qf are the free charges in the volume. When we consider a pillbox-shaped volume straddling the interface between two materials, the surface integral can be broken down into three parts:

  1. Top surface (in material 1)
  2. Bottom surface (in material 2)
  3. Side surface (cylindrical part)

The total surface integral becomes:

DdA=topD1dA+bottomD2dA+sideDdA

For a pillbox of height h and radius r:

  • The top surface contributes: D1n^A (negative because dA points along n^)

  • The bottom surface contributes: D2n^A

  • The side surface contribution goes to zero as h0 (as area 2πrh)

Therefore:

DdA=A(D1D2)n^=qf

Key Points

  1. The side surface contribution vanishes as h0 because:

    • Its area scales with h (2πrh)
    • The field components remain finite
  2. Only the normal components of D contribute because:

    • dA is parallel to n^ for top and bottom surfaces
    • The tangential components don’t contribute to the dot product
  3. The ratio qf/A becomes the surface charge density σf as h0

Following that, we obtain the boundary condition for the normal component of the displacement field:

(10)D1=D1

This implies a jump in the normal electric field component:

(11)E1E2=ϵ2ϵ1

as D=ϵE. Another boundary condition arises from the curl of the electric field. Using the Maxwell equation:

(12)×E=Bt

Integrating both sides over an area and applying Stokes theorem:

(13)Edl=tBdA

Consider a rectangular loop straddling the interface between two media, with a height h a width w and a normal to the interface n^ the line integral can be broken down into four parts:

  1. Top segment (in medium 1)
  2. Bottom segment (in medium 2)
  3. Two vertical segments connecting them

The line integral becomes:

Edl=wE1t^wE2t^+(vertical segments)

where t^ is the unit vector tangent to the interface.

As h0:

  1. The contribution from vertical segments vanishes (as h0)
  2. The area of the loop approaches zero, making the right-hand side zero: tBdA0

Therefore:

w(E1E2)t^=0

Since w0, this implies:

(E1E2)t^=0

This can be rewritten in terms of the cross product with the normal vector:

(14)n^×(E2E1)=0

Therefore:

(15)E2||=E1||

indicating that the tangential component of the electric field is conserved.

For the magnetic field, we can derive boundary conditions using similar approaches. Starting with Ampère’s law:

×H=J+Dt

Integrating over an area and applying Stokes’ theorem:

Hdl=JdA+tDdA

Using the same rectangular loop approach as with the electric field, but now in the limit as h0:

  1. The area integral of the displacement current (D/t) vanishes
  2. The surface current density K=JdA remains finite

This yields:

n^×(H2H1)=K

In the absence of surface currents (K=0), we have:

(16)H2||=H1||

For the normal component, starting from B=0 and using the pillbox approach as with the electric field:

BdA=0

This leads directly to:

(17)B1=B2

Since B=μH, this implies a jump in the normal component of the H-field:

(18)H1H2=μ2μ1

These boundary conditions for the magnetic field complement those for the electric field and are essential for determining the reflection and transmission coefficients at interfaces.

Summary Boundary Conditions at an Interface

For a boundary between two media (1 and 2) with surface normal n^:

Electric Field

  • Normal component (with surface charge density σf): ϵ1E1ϵ2E2=σf
  • Tangential component: E1||=E2||

Magnetic Field

  • Normal component: B1=B2
  • Tangential component (with surface current density K): n^×(H2H1)=K

In the absence of free charges (σf=0) and currents (K=0), these reduce to:

  • ϵ1E1=ϵ2E2
  • E1||=E2||
  • B1=B2
  • H1||=H2||

Reflection/Refraction

Frequency and Wavevector Matching

Referring to , we can explicitly write down the components of the wavevectors of the three waves in our coordinate system:

Figure 5— Coordinate system for wave at interfaces.

According to the coordinate system shown in , we have:

(19)kI=kIcos(θI)e^x+kIsin(θI)e^zkR=kRcos(θR)e^x+kRsin(θR)e^zkT=kTcos(θT)e^x+kTsin(θT)e^z

Note that the component e^x always provides the wavevector component perpendicular to the interface, while e^z is the tangential (parallel) component. The total field on both sides is given by:

(20)E=Einc+Eref(for x<0)

and

(21)E=Etra(for x>0)

For these fields to match according to our previously described boundary conditions, we require:

(22)ωI=ωR=ωT

This frequency matching confirms our initial intuition. Along the interface, we also need phase matching of the waves as discussed in the wave optics chapter:

(23)kIr=kRr=kTr

at all positions r that belong to the interface (i.e., x=0). Therefore r={0,y,z} and the equalities yield:

(24)kIsin(θI)=kRsin(θR)=kTsin(θT)

Since the magnitude of the wavevector of the incident and the reflected light is the same (both waves travel in the same material), we find:

(25)θI=θR

For the incident and transmitted waves, we must account for the change in wavenumber:

(26)n1k0sin(θI)=n2k0sin(θT)n1sin(θI)=n2sin(θT)

represents Snell’s law, which results from the conservation of the parallel component of the wavevector across an interface, while the normal component must have a jump according to the refractive indices.